home *** CD-ROM | disk | FTP | other *** search
/ Interactive Preview: Enemy of the State / Interactive Preview: Enemy of the State.iso / pc / main.dxr / 00213.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  860 b   |  37 lines

  1. on mouseEnter me
  2.   cursor(280)
  3. end
  4.  
  5. on mouseLeave me
  6.   cursor(0)
  7. end
  8.  
  9. on mouseUp me
  10.   set the visible of sprite 41 to 0
  11.   set the visible of sprite 42 to 0
  12.   set the movieRate of sprite 42 to 0
  13.   set the movieTime of sprite 42 to 0
  14.   updateStage()
  15.   if the memberNum of sprite 10 = 0 then
  16.     nothing()
  17.   else
  18.     if the type of member the memberNum of sprite 10 = #digitalVideo then
  19.       if the visible of sprite 20 = 1 then
  20.         set the movieRate of sprite 10 to 1
  21.         set the visible of sprite 10 to 1
  22.       end if
  23.     end if
  24.   end if
  25.   if the memberNum of sprite 5 = 0 then
  26.     nothing()
  27.   else
  28.     if the type of member the memberNum of sprite 5 = #digitalVideo then
  29.       if the visible of sprite 20 = 1 then
  30.         set the movieRate of sprite 5 to 1
  31.         set the visible of sprite 5 to 1
  32.       end if
  33.     end if
  34.   end if
  35.   updateStage()
  36. end
  37.